home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / os-probes / mounted / 80minix < prev    next >
Text File  |  2004-10-20  |  275b  |  18 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. . /usr/share/os-prober/common.sh
  5.  
  6. partition="$1"
  7. dir="$2"
  8. type="$3"
  9.  
  10. if [ "$type" = minix ] && [ -f "$dir/minix" ]; then
  11.     # XXX will chain loading work?
  12.         label=$(count_next_label Minix)
  13.     result "$partition:Minix:$label:chain"
  14.     exit 0
  15. else
  16.     exit 1
  17. fi
  18.